Platform Explorer / Nuxeo Platform 2023.9

Component org.nuxeo.template.service.xdocreport.contrib

Requirements

Resolution Order

879
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<component
  name="org.nuxeo.template.service.xdocreport.contrib">

  <require>org.nuxeo.template.service.defaultContrib</require>

  <extension target="org.nuxeo.template.service.TemplateProcessorComponent" point="processor">

    <documentation>XDocReport Report based template processor</documentation>

    <templateProcessor name="XDocReportProcessor" label="XDocReport processor" default="true" class="org.nuxeo.template.processors.xdocreport.XDocReportProcessor">
      <supportedMimeType>application/vnd.oasis.opendocument.text</supportedMimeType>
      <supportedMimeType>application/vnd.openxmlformats-officedocument.wordprocessingml.document</supportedMimeType>
      <supportedMimeType>application/vnd.oasis.opendocument.spreadsheet</supportedMimeType>
      <supportedExtension>odt</supportedExtension>
      <supportedExtension>docx</supportedExtension>
      <supportedExtension>ods</supportedExtension>
    </templateProcessor>

  </extension>

 </component>